home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
353_02
/
flyaway.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-18
|
373b
|
14 lines
// This file contains a few general purpose definitions to be used
// with several of the FLYAWAY adventure game classes.
#ifndef FLYAWAY_H
#define FLYAWAY_H
#define FALSE 0
#define TRUE 1
enum word {north = 1, east, south, west, drop, get,
look, inventory, read, buy, help, quit,
keys, candy, ticket, money, monitor, paper};
#endif